home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / PopUpFormatter / PopupFormatter.h < prev    next >
Text File  |  1995-06-12  |  697b  |  32 lines

  1. #import <dbkit/dbkit.h>
  2. #import <appkit/appkit.h>
  3.  
  4.  
  5. @interface PopupFormatter : DBTextFormatter
  6. {
  7.     DBValue        *newValue;
  8.     BOOL    selectionMode:3,
  9.             delWill1:1,    /* methods delegate responds to */
  10.             delWill2:1,
  11.             delDid:1;
  12.     id popupList;
  13.     id popupButton;
  14.  
  15. }
  16. - mouseDown:(NXEvent *)theEvent at:(int)row :(int)column
  17.     inside:(NXRect *)frame inView:(View *) view
  18.     withAttributes:(id <DBTableVectors >)rowAttrs
  19.      :(id <DBTableVectors >)columnAttrs
  20.     usePositions:(BOOL)useRowPos :(BOOL)useColumnPos;
  21.  
  22. - setValueAt:(int)row :(int)column
  23.     withAttributes:(id <DBTableVectors >)rowAttrs
  24.      :(id <DBTableVectors >)columnAttrs
  25.     usePositions:(BOOL)useRowPos :(BOOL)useColumnPos;
  26.  
  27. @end
  28.  
  29.  
  30.  
  31.  
  32.